home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000168_news@columbia.edu _Sun Feb 2 12:35:37 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA22385
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sun, 2 Feb 1997 12:35:36 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA01989
  7.     for kermit.misc@watsun; Sun, 2 Feb 1997 12:35:35 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: direct serial connection
  12. Date: 2 Feb 1997 17:35:33 GMT
  13. Organization: Columbia University
  14. Lines: 44
  15. Message-ID: <5d2j95$88k$1@apakabar.cc.columbia.edu>
  16. References: <32F567DA.3FB0@ix.netcom.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6517
  19.  
  20. In article <32F567DA.3FB0@ix.netcom.com>,  <shegonee@ix.netcom.com> wrote:
  21. : Is there a way to use kermit to verify a successful direct
  22. : serial connection between to machines?
  23. :
  24. Yes.
  25.  
  26. : I have two Pentium PCs side-by-side running Windows 95. If I run a
  27. : null-modem cable from COM2 of one machine to COM2 of the other,
  28. : how can I use Kermit to verify that a serial connection has been
  29. : established?
  30. :
  31. Tell both Kermit programs to:
  32.  
  33.   set port com2
  34.   set flow rts/cts
  35.   set term echo on
  36.   set term cr-display crlf
  37.   connect
  38.  
  39. If your null modem cable is good, then whatever you type on PC A's keyboard
  40. should show up on PC B's screen, and vice versa.
  41.  
  42. : Question, why can I do the same thing with a direct serial connection
  43. : between COM2 on each machine? I can get the windows up, but when I
  44. : press a key I get a count down in the that goes to zero and a
  45. : message that says *serial port blocked*.
  46. :
  47. This indicates that you probably don't have the RTS and CTS wires crossed,
  48. and/or that you don't have the DTR and CD wires crossed.
  49.  
  50. : When kermit goes back to
  51. : the command line, there is a message that says *Tx waiting for CTS*.
  52. : I used a null-modem cable which I purchased from a computer retailer.
  53. : I verified that the pins were wired like the Modem B True Null Modem 
  54. : in Figure II-5 on Page 372 of "Using C-Kermit" - except that pin 1 
  55. : to pin 1 was not connected. 
  56. :
  57. If the RTS and CTS wires were crossed, then each Kermit program would be
  58. receiving the CTS signal from the other PC's RTS circuit.  So you probably
  59. should check your cable again.  The fact that Pin 1 is not connected already
  60. casts some disrepute on the cable -- that's the electrical safety (ground)
  61. circuit.  So don't do this while sitting in a bathtub :-)
  62.  
  63. - Frank